Telegram Group & Telegram Channel
🇩🇪 بسته URLLIB

❗️ این بسته که برای کار با URLها از چندین ماژول استفاده می‌کند که عبارتند از:

urllib.request که برای باز کردن و خواندن URLها استفاده می‌شود.

urllib.error که برای مدیریت کردن خطاهایی است که توسط  urllib.request بوجود آمده‌اند.

🤔 ماژول urllib.request رابطی بسیار ساده برای ایجاد درخواست‌ها بوجود می‌آورد و هم‌چنین برای مدیریت‌کردن احراز هویت‌ گزینه‌های بیشتری در اختیار برنامه نویس قرار می‎دهد.

↙️ در کد زیر درخواستی توسط متد urlopen فرستاده شد:

import urllib

req = urllib.request.urlopen('https://example.ir')

print(req.status)

🔅 دریافت منبع از اینترنت هم توسط متد urlretrieve انجام می‌شود.

 

⭕️ مثال تفاوت دریافت عکس با Urllib و Requests :

import urllib

url = 'https://www.python.org/static/opengraph-icon-200x200.png'

urllib.request.urlretrieve(url, "image-urllib.png")



import requests

url = 'https://www.python.org/static/opengraph-icon-200x200.png'

r = requests.get(url)

with open("image-requests.png", "wb") as code:

    code.write(r.content)



tg-me.com/python12/1374
Create:
Last Update:

🇩🇪 بسته URLLIB

❗️ این بسته که برای کار با URLها از چندین ماژول استفاده می‌کند که عبارتند از:

urllib.request که برای باز کردن و خواندن URLها استفاده می‌شود.

urllib.error که برای مدیریت کردن خطاهایی است که توسط  urllib.request بوجود آمده‌اند.

🤔 ماژول urllib.request رابطی بسیار ساده برای ایجاد درخواست‌ها بوجود می‌آورد و هم‌چنین برای مدیریت‌کردن احراز هویت‌ گزینه‌های بیشتری در اختیار برنامه نویس قرار می‎دهد.

↙️ در کد زیر درخواستی توسط متد urlopen فرستاده شد:

import urllib

req = urllib.request.urlopen('https://example.ir')

print(req.status)

🔅 دریافت منبع از اینترنت هم توسط متد urlretrieve انجام می‌شود.

 

⭕️ مثال تفاوت دریافت عکس با Urllib و Requests :

import urllib

url = 'https://www.python.org/static/opengraph-icon-200x200.png'

urllib.request.urlretrieve(url, "image-urllib.png")



import requests

url = 'https://www.python.org/static/opengraph-icon-200x200.png'

r = requests.get(url)

with open("image-requests.png", "wb") as code:

    code.write(r.content)

BY پایتون / python




Share with your friend now:
tg-me.com/python12/1374

View MORE
Open in Telegram


پایتون python Telegram | DID YOU KNOW?

Date: |

Mr. Durov launched Telegram in late 2013 with his brother, Nikolai, just months before he was pushed out of VK, the Russian social-media platform he founded. Mr. Durov pitched his new app—funded with the proceeds from the VK sale—less as a business than as a way for people to send messages while avoiding government surveillance and censorship.

The lead from Wall Street offers little clarity as the major averages opened lower on Friday and then bounced back and forth across the unchanged line, finally finishing mixed and little changed.The Dow added 33.18 points or 0.10 percent to finish at 34,798.00, while the NASDAQ eased 4.54 points or 0.03 percent to close at 15,047.70 and the S&P 500 rose 6.50 points or 0.15 percent to end at 4,455.48. For the week, the Dow rose 0.6 percent, the NASDAQ added 0.1 percent and the S&P gained 0.5 percent.The lackluster performance on Wall Street came on uncertainty about the outlook for the markets following recent volatility.

پایتون python from sg


Telegram پایتون / python
FROM USA